Dashboard for monitoring AI coding agent sessions across Claude Code and Codex CLI
Project description
Agent Kitchen
Like browser history for your Claude Code sessions.
You run dozens of Claude Code and Codex sessions a day. Which repos have active work? What was that session doing? Where did you leave off yesterday?
Agent Kitchen gives you a single dashboard for all of it — sessions grouped by repo, LLM-generated summaries, live git status, and one-click resume.
# One command. No install needed.
uvx agent-kitchen web
Why
AI coding agents don't have a "recent projects" view. Your session history is scattered across hidden JSONL files. Switching between repos means losing context on what you were doing elsewhere.
Agent Kitchen fixes this by scanning your local session data, grouping everything by git repo, and surfacing what matters:
- What's active — sessions sorted by recency, status badges (done, in progress, waiting)
- What changed — per-repo timeline showing work evolution over days
- What's dirty — live git status (branch, uncommitted changes, unpushed commits)
- What it was about — LLM-generated one-line summaries via Claude Haiku
Features
- Unified view — Claude Code and Codex CLI sessions in one place, grouped by repo
- Rich chat view — click any session to see a rendered conversation with markdown, code highlighting, and collapsible tool calls
- Live agent interaction — send messages to agents directly from the browser via the Agent Client Protocol (ACP)
- LLM summaries — one-line descriptions and status classification (done / in progress / waiting)
- Live git status — current branch, dirty files, unpushed commits per repo
- Repo timelines — see how work evolved across sessions over days
- Browser terminal — resume sessions in-browser via xterm.js (fallback mode)
- Fuzzy search — press
/to filter across all sessions with command-palette overlay - Keyboard navigation —
j/kto move between groups,Enterto expand,?for shortcuts - Image support — paste images into chat with preview strip
- Session lifecycle — automatic death detection, termination UI, and restart capability
- Fast startup — cached summaries load instantly, LLM upgrades happen in the background
- No build step — vanilla HTML/JS/CSS, zero npm dependencies
Quick Start
# Run directly — no install needed
uvx agent-kitchen web
# Or install it
uv pip install agent-kitchen
agent-kitchen web
Opens at http://localhost:8099.
Usage
# Custom port
agent-kitchen web --port 9000
# Scan further back in history
agent-kitchen web --scan-days 90
# Don't auto-open the browser
agent-kitchen web --no-open
# Enable background LLM summarization
agent-kitchen web --summarize
Pre-indexing summaries
By default, the dashboard shows fallback summaries (the first user message). For LLM-generated summaries, either pass --summarize to the web command, or pre-index:
agent-kitchen index # Index all sessions from the last 60 days
agent-kitchen index --dry-run # Preview without LLM calls
agent-kitchen index --force # Re-index everything, ignoring cache
agent-kitchen index --concurrency 5 # Control LLM concurrency (default: 3)
Summaries are cached at ~/.cache/agent-kitchen/summaries.json.
Authentication (for LLM summaries)
LLM summaries require a Claude API credential, checked in order:
ANTHROPIC_API_KEY— standard Anthropic API keyCLAUDE_CODE_OAUTH_TOKEN— Claude Max subscription tokenpasspassword manager atdev/CLAUDE_SUBSCRIPTION_TOKEN
export ANTHROPIC_API_KEY=sk-ant-...
agent-kitchen web --summarize
Without credentials, the dashboard still works — you just get fallback summaries instead.
Configuration
| Variable | Default | Description |
|---|---|---|
AGENT_KITCHEN_PORT |
8099 |
Server port |
AGENT_KITCHEN_SCAN_DAYS |
60 |
Days of history to scan |
AGENT_KITCHEN_REFRESH_INTERVAL |
60 |
Background rescan interval (seconds) |
AGENT_KITCHEN_TERMINAL |
ghostty |
Terminal app (ghostty or terminal) |
How It Works
Dashboard pipeline — scanning and grouping sessions:
JSONL session files (~/.claude, ~/.codex)
→ Scanner (parse sessions, filter noise)
→ Git Status (branch, dirty, unpushed)
→ Cache (reuse prior summaries by mtime)
→ LLM Summarizer (Claude Haiku via Agent SDK)
→ Grouping (by repo, sorted by recency)
→ FastAPI server (JSON API + static frontend)
Chat view — interacting with agents:
Browser (chat.js) ↔ WebSocket ↔ FastAPI ↔ ACP agent subprocess
When you click a session, the chat panel opens a rich conversation view. Sending a message spawns an agent subprocess using the Agent Client Protocol, which streams responses back over WebSocket as structured messages (text, tool calls, status updates).
Only interactive sessions are shown. Programmatic SDK sessions (≤1 user turn) and subagent child sessions are filtered out. See docs/session-formats.md for details.
Development
git clone https://github.com/haldar/agent-kitchen.git
cd agent-kitchen
uv pip install -e ".[dev]"
uv run pytest # Python tests
node --test tests/test_chat.mjs # Frontend JS tests
uvx ruff check --fix . # Lint
uvx ruff format . # Format
Requirements
- Python 3.12+
- macOS (terminal launch uses AppleScript; the dashboard itself works anywhere)
~/.claudeand/or~/.codexdirectories with session data- Node.js (for the chat panel — agents are spawned via
npxand fetched on first use; no separate global install needed)
License
Apache 2.0 — see LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agent_kitchen-0.3.2.tar.gz.
File metadata
- Download URL: agent_kitchen-0.3.2.tar.gz
- Upload date:
- Size: 730.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4664fc90df9bc9e54c0a8ac48aa8ff678bca6df6d67a651050be3f7950a14acf
|
|
| MD5 |
11f61f052ea1d49245abb27cbd8496aa
|
|
| BLAKE2b-256 |
f5913397be874b2bb10144ef378b4b01cceb9e31455509476e17fbde8a1554e9
|
File details
Details for the file agent_kitchen-0.3.2-py3-none-any.whl.
File metadata
- Download URL: agent_kitchen-0.3.2-py3-none-any.whl
- Upload date:
- Size: 71.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8451f47b604c82d0209c50e0920199301451ab6c9f31972d2348c7aac0d4b74
|
|
| MD5 |
a46e9577f3efbd149e61873471ffdae5
|
|
| BLAKE2b-256 |
6423d072924848c2755e69104a3136d04effdab73e987347d69252bb60180a9d
|